home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / freeli22.zip / PROGS / REDO_EX.BAT < prev    next >
DOS Batch File  |  1996-09-01  |  259b  |  12 lines

  1. @echo off
  2. tasm -m -ml -q -t *.asm
  3. if not exist freelib.lib goto try1
  4. for %%x in (*.obj) do tlink/t %%x,,,freelib.lib
  5. goto done
  6. :try1
  7. if not exist ..\freelib.lib goto done
  8. for %%x in (*.obj) do tlink/t %%x,,,..\freelib.lib
  9. :done
  10. del *.obj
  11. del *.map
  12.